home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / SubObject.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  579 b   |  28 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: SubObject.h,v 1.3 1993/05/04 16:22:57 davis Exp $ */
  11.  
  12. #import <objc/Object.h>
  13.  
  14. @interface SubObject:Object
  15. {
  16.   char    *stringValue;
  17. }
  18.  
  19. - init;
  20. - initFromString:(const char *)aString;
  21.  
  22. - setStringValue: (const char *)aString;
  23. - (const char *)stringValue;
  24.  
  25. - (BOOL)isAttachment;                /* Returns NO    */
  26.  
  27. @end
  28.